Online documentation - WebsydianExpress v3.5 |
Installing the WebsydianExpress the objects have all ready been transferred to the iSeries.
Otherwise use FTP to transfer the save file to the iSeries and restore the objects.
RNMOBJ OBJ(PLEX550/YOBSYTCPDP) OBJTYPE(*PGM) NEWOBJ(XYOBSYTCPDP)
RNMOBJ OBJ(PLEX550/VOBSYTCPDP) OBJTYPE(*PGM) NEWOBJ(YOBSYTCPDP)
It is recommended to create a user profile for running the Plex dispatcher
The parameter passed to the YOBSYTCPDP program must be an available, unused port number. Use the command WRKTCPSTS *CNN to verify that the port is not being used.
SBMJOB CMD(CALL PGM(PLEX550/YOBSYTCPDP) PARM('55000')) JOB(YOBLISTEN) JOBD(PLEX550/PLEX) JOBQ(QGPL/QINTER) USER(user)
Make sure to change the user parameter with the correct user.
Using the command as described in example 1 write your own CL program to start PLEX550/YOBSYSTPDP and call the CL program as part of your IPL.
The following is an example you could use if your IPL happened
nightly:
ADDJOBSCDE CMD(CALL PGM(PLEX550/YOBSYTCPDP) PARM('55000'))
FRQ(*WEEKLY)
SCDDATE(*NONE) SCDDAY(*ALL) SCDTIME('hh:mm:ss') JOBD(PLEX550/PLEX)
JOBQ(QGPL/QINTER)
USER(user)
Make sure to enter correct schedule time and user profile to use.